home *** CD-ROM | disk | FTP | other *** search
- failat 25
-
- ; this script file does a temporary install of
- ; the IceBBS demo. To make the install permanent
- ; you need to make changes to your user-startup
- ; script to at least duplicate what is here.
- ;
- : this script assumes it was run from the directory
- ; where IceBBS was unpacked.
- ;
- ; first we make the IceBBS: assign, this is done so
- ; that the default installation is easy to set up,
- ; the icebbs: assign can be eliminated entirely if
- ; you make the appropriate changes to the icebbs.binit file
-
- assign icebbs: ""
-
- ; now we make the icebbs configuration files visable
- ; (it looks for them in the S: directory)
-
- assign s: icebbs:bbs_s add
-
- ; now we add the directory that contains the programs
- ; to the path
-
- path icebbs:bbs add
-
- ; we delete some junk files that were needed to make
- ; LHA create the full directory tree for us. There are
- ; a number of directories that IceBBS needs that are
- ; initially empty and LHA does not archive empty directories.
-
- delete icebbs:#?/PlaceHolder
-
- ; now we initialize the message bases, this only needs to be
- ; done whenever the contents of the s:icebbs.newsigs file
- ; is changed
-
- updatesig
-
- ; and we start icebbs running.
-
- icebbsdemo
-
- ; cleanup...
-
- path icebbs:bbs remove
- assign s: icebbs:bbs_s remove
- assign icebbs:
-